[INFO] fetching crate helloxxxxxx 0.1.0...
[INFO] checking helloxxxxxx-0.1.0 against try#21cad1f647cfd05a566220f933edd88a53e50bcf for pr-129249-1
[INFO] extracting crate helloxxxxxx 0.1.0 into /workspace/builds/worker-0-tc2/source
[INFO] started tweaking crates.io crate helloxxxxxx 0.1.0
[INFO] finished tweaking crates.io crate helloxxxxxx 0.1.0
[INFO] tweaked toml for crates.io crate helloxxxxxx 0.1.0 written to /workspace/builds/worker-0-tc2/source/Cargo.toml
[INFO] validating manifest of crates.io crate helloxxxxxx 0.1.0 on toolchain 21cad1f647cfd05a566220f933edd88a53e50bcf
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+21cad1f647cfd05a566220f933edd88a53e50bcf" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate crates.io crate helloxxxxxx 0.1.0 already has a lockfile, it will not be regenerated
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+21cad1f647cfd05a566220f933edd88a53e50bcf" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] [stderr]     Blocking waiting for file lock on package cache
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-m" "1610612736" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:3e793bdf10248eb2ddbd6b0faebed8155c11b4589982e2893733958d93e8d540" "sleep" "infinity", kill_on_drop: false }`
[INFO] [stdout] 5719ae560a74b1b3538e6495e915a42889e71dc1bb9f8b598f3baa7f5bcf38b4
[INFO] running `Command { std: "docker" "start" "5719ae560a74b1b3538e6495e915a42889e71dc1bb9f8b598f3baa7f5bcf38b4", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-w" "/opt/rustwide/workdir" "--user" "0:0" "5719ae560a74b1b3538e6495e915a42889e71dc1bb9f8b598f3baa7f5bcf38b4" "/opt/rustwide/cargo-home/bin/cargo" "+21cad1f647cfd05a566220f933edd88a53e50bcf" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "5719ae560a74b1b3538e6495e915a42889e71dc1bb9f8b598f3baa7f5bcf38b4", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "RUSTDOCFLAGS=--cap-lints=forbid" "-w" "/opt/rustwide/workdir" "--user" "0:0" "5719ae560a74b1b3538e6495e915a42889e71dc1bb9f8b598f3baa7f5bcf38b4" "/opt/rustwide/cargo-home/bin/cargo" "+21cad1f647cfd05a566220f933edd88a53e50bcf" "check" "--frozen" "--all" "--all-targets" "--message-format=json", kill_on_drop: false }`
[INFO] [stderr]    Compiling libc v0.2.171
[INFO] [stderr]     Checking rand_core v0.4.2
[INFO] [stderr]     Checking rand_core v0.3.1
[INFO] [stderr]     Checking rand v0.5.6
[INFO] [stderr]     Checking helloxxxxxx v0.1.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: struct `NewsArticle` is never constructed
[INFO] [stdout]  --> src/lib.rs:1:8
[INFO] [stdout]   |
[INFO] [stdout] 1 | struct NewsArticle{
[INFO] [stdout]   |        ^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: struct `NewsArticle` is never constructed
[INFO] [stdout]  --> src/lib.rs:1:8
[INFO] [stdout]   |
[INFO] [stdout] 1 | struct NewsArticle{
[INFO] [stdout]   |        ^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: struct `Cacher` is never constructed
[INFO] [stdout]    --> src/main.rs:494:8
[INFO] [stdout]     |
[INFO] [stdout] 494 | struct Cacher<T>
[INFO] [stdout]     |        ^^^^^^
[INFO] [stdout]     |
[INFO] [stdout]     = note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: associated items `new` and `value` are never used
[INFO] [stdout]    --> src/main.rs:504:8
[INFO] [stdout]     |
[INFO] [stdout] 501 | / impl<T> Cacher<T>
[INFO] [stdout] 502 | |     where T : Fn(u32) -> u32
[INFO] [stdout]     | |____________________________- associated items in this implementation
[INFO] [stdout] 503 |   {
[INFO] [stdout] 504 |       fn new(calculation : T) -> Cacher<T>{
[INFO] [stdout]     |          ^^^
[INFO] [stdout] ...
[INFO] [stdout] 507 |       fn value(&mut self, args: u32) -> u32{
[INFO] [stdout]     |          ^^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: function `generate_workout` is never used
[INFO] [stdout]    --> src/main.rs:519:4
[INFO] [stdout]     |
[INFO] [stdout] 519 | fn generate_workout(intensity:u32, random_number:u32)
[INFO] [stdout]     |    ^^^^^^^^^^^^^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: struct `Shoe` is never constructed
[INFO] [stdout]    --> src/main.rs:547:8
[INFO] [stdout]     |
[INFO] [stdout] 547 | struct Shoe{
[INFO] [stdout]     |        ^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: function `shoes_in_my_feet` is never used
[INFO] [stdout]    --> src/main.rs:552:4
[INFO] [stdout]     |
[INFO] [stdout] 552 | fn shoes_in_my_feet(shoes : Vec<Shoe>, size : u32) -> Vec<Shoe>
[INFO] [stdout]     |    ^^^^^^^^^^^^^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: struct `Counter` is never constructed
[INFO] [stdout]    --> src/main.rs:576:8
[INFO] [stdout]     |
[INFO] [stdout] 576 | struct Counter{
[INFO] [stdout]     |        ^^^^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: associated function `new` is never used
[INFO] [stdout]    --> src/main.rs:580:8
[INFO] [stdout]     |
[INFO] [stdout] 579 | impl Counter {
[INFO] [stdout]     | ------------ associated function in this implementation
[INFO] [stdout] 580 |     fn new() -> Counter{
[INFO] [stdout]     |        ^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: struct `Cacher` is never constructed
[INFO] [stdout]    --> src/main.rs:494:8
[INFO] [stdout]     |
[INFO] [stdout] 494 | struct Cacher<T>
[INFO] [stdout]     |        ^^^^^^
[INFO] [stdout]     |
[INFO] [stdout]     = note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: associated items `new` and `value` are never used
[INFO] [stdout]    --> src/main.rs:504:8
[INFO] [stdout]     |
[INFO] [stdout] 501 | / impl<T> Cacher<T>
[INFO] [stdout] 502 | |     where T : Fn(u32) -> u32
[INFO] [stdout]     | |____________________________- associated items in this implementation
[INFO] [stdout] 503 |   {
[INFO] [stdout] 504 |       fn new(calculation : T) -> Cacher<T>{
[INFO] [stdout]     |          ^^^
[INFO] [stdout] ...
[INFO] [stdout] 507 |       fn value(&mut self, args: u32) -> u32{
[INFO] [stdout]     |          ^^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: function `generate_workout` is never used
[INFO] [stdout]    --> src/main.rs:519:4
[INFO] [stdout]     |
[INFO] [stdout] 519 | fn generate_workout(intensity:u32, random_number:u32)
[INFO] [stdout]     |    ^^^^^^^^^^^^^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: struct `Shoe` is never constructed
[INFO] [stdout]    --> src/main.rs:547:8
[INFO] [stdout]     |
[INFO] [stdout] 547 | struct Shoe{
[INFO] [stdout]     |        ^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: function `shoes_in_my_feet` is never used
[INFO] [stdout]    --> src/main.rs:552:4
[INFO] [stdout]     |
[INFO] [stdout] 552 | fn shoes_in_my_feet(shoes : Vec<Shoe>, size : u32) -> Vec<Shoe>
[INFO] [stdout]     |    ^^^^^^^^^^^^^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: struct `Counter` is never constructed
[INFO] [stdout]    --> src/main.rs:576:8
[INFO] [stdout]     |
[INFO] [stdout] 576 | struct Counter{
[INFO] [stdout]     |        ^^^^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: associated function `new` is never used
[INFO] [stdout]    --> src/main.rs:580:8
[INFO] [stdout]     |
[INFO] [stdout] 579 | impl Counter {
[INFO] [stdout]     | ------------ associated function in this implementation
[INFO] [stdout] 580 |     fn new() -> Counter{
[INFO] [stdout]     |        ^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [optimized + debuginfo] target(s) in 3.05s
[INFO] running `Command { std: "docker" "inspect" "5719ae560a74b1b3538e6495e915a42889e71dc1bb9f8b598f3baa7f5bcf38b4", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "5719ae560a74b1b3538e6495e915a42889e71dc1bb9f8b598f3baa7f5bcf38b4", kill_on_drop: false }`
[INFO] [stdout] 5719ae560a74b1b3538e6495e915a42889e71dc1bb9f8b598f3baa7f5bcf38b4
